home *** CD-ROM | disk | FTP | other *** search
/ ASME's Mechanical Engine…ing Toolkit 1997 December / ASME's Mechanical Engineering Toolkit 1997 December.iso / c_lang / pccstdio.lzh / SRC.LZH / REWIND.C < prev    next >
Encoding:
C/C++ Source or Header  |  1984-06-18  |  256 b   |  14 lines

  1. /*    rewind.cl - rewind a stream.
  2.     (C) Copyright 1984 Gregory R. Mansfield - All Rights Reserved.
  3.     G. R. Mansfield.  84/06/16.
  4.     Ver 1.0-4616.
  5. */
  6.  
  7. #include "stdio.h"
  8.  
  9. rewind(fp) /* rewind a stream */
  10. FILE *fp;
  11. {
  12.     fseek(fp, 0L, 0);
  13. }
  14.